home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / maya_miguel_global_groovin.swf / scripts / DefineButton2_152 / BUTTONCONDACTION on(press).as
Text File  |  2007-09-27  |  616b  |  21 lines

  1. on(press){
  2.    _root.gameStarted = true;
  3.    _root.GamePaused = false;
  4.    _root.GlobalSound.stop();
  5.    _root.play();
  6.    _root.PlayHeadMoving = true;
  7.    if(_root.soundtrack1playing)
  8.    {
  9.       _root.StartThisSound(_root.soundtrack1current,_root.soundtrack1index,_root.track1offset,1);
  10.    }
  11.    if(_root.soundtrack2playing)
  12.    {
  13.       _root.StartThisSound(_root.soundtrack2current,_root.soundtrack2index,_root.track2offset,2);
  14.    }
  15.    if(_root.soundtrack3playing)
  16.    {
  17.       _root.StartThisSound(_root.soundtrack3current,_root.soundtrack3index,_root.track3offset,3);
  18.    }
  19.    gotoAndStop("playing");
  20. }
  21.